newTemplate function
Create a new Excel template file.
Embedded data will be packed via template.dart
.
Implementation
void newTemplate(String filename) {
final Uint8List buf = base64Decode(kTemplate);
File(filename).writeAsBytesSync(buf);
}
Create a new Excel template file.
Embedded data will be packed via template.dart
.
void newTemplate(String filename) {
final Uint8List buf = base64Decode(kTemplate);
File(filename).writeAsBytesSync(buf);
}