Showing
2 changed files
with
2 additions
and
2 deletions
@@ -80,7 +80,7 @@ class PrintJobs { | @@ -80,7 +80,7 @@ class PrintJobs { | ||
80 | return job; | 80 | return job; |
81 | } | 81 | } |
82 | 82 | ||
83 | - /// Retrive an existing job | 83 | + /// Retrieve an existing job |
84 | PrintJob? getJob(int index) { | 84 | PrintJob? getJob(int index) { |
85 | return _printJobs[index]; | 85 | return _printJobs[index]; |
86 | } | 86 | } |
@@ -27,7 +27,7 @@ class PrintingInfo { | @@ -27,7 +27,7 @@ class PrintingInfo { | ||
27 | this.canRaster = false, | 27 | this.canRaster = false, |
28 | }); | 28 | }); |
29 | 29 | ||
30 | - /// Create an information object from a dictionnary | 30 | + /// Create an information object from a dictionary |
31 | factory PrintingInfo.fromMap(Map<dynamic, dynamic> map) => PrintingInfo( | 31 | factory PrintingInfo.fromMap(Map<dynamic, dynamic> map) => PrintingInfo( |
32 | directPrint: map['directPrint'] ?? false, | 32 | directPrint: map['directPrint'] ?? false, |
33 | dynamicLayout: map['dynamicLayout'] ?? false, | 33 | dynamicLayout: map['dynamicLayout'] ?? false, |
-
Please register or login to post a comment