exportJson static method

Future<void> exportJson({
  1. required List<int> bytes,
  2. String fileName = 'Report.json',
})

JSON

Implementation

static Future<void> exportJson({
  required List<int> bytes,
  String fileName = 'Report.json',
}) async {
  await exportFile(bytes: bytes, fileName: fileName);
}