David PHAM-VAN

Add changelog and format

# Changelog
## 5.13.2
- Added new printing output type value on iOS [Matteo Ricupero]
## 5.13.1
- Fix Flutter SDK Minimum version
... ...
... ... @@ -151,7 +151,8 @@ public class PrintJob: UIPrintPageRenderer, UIPrintInteractionControllerDelegate
for paper in paperList {
if (paper.paperSize.width == currentSize!.width && paper.paperSize.height == currentSize!.height) ||
(paper.paperSize.width == currentSize!.height && paper.paperSize.height == currentSize!.width) {
(paper.paperSize.width == currentSize!.height && paper.paperSize.height == currentSize!.width)
{
return paper
}
}
... ...
... ... @@ -61,9 +61,8 @@ public class PrintingPlugin: NSObject, FlutterPlugin {
let printJob = PrintJob(printing: self, index: args["job"] as! Int)
let dynamic = args["dynamic"] as! Bool
let outputType: UIPrintInfo.OutputType
switch (args["outputType"] as! Int) {
switch args["outputType"] as! Int {
case 0:
outputType = UIPrintInfo.OutputType.general
case 1:
... ...