loadTemplate method

Future<int?> loadTemplate(
  1. String template
)

Load s template file.

Implementation

Future<int?> loadTemplate(String template) async {
  return await methodChannel.invokeMethod('loadTemplate', {
    'template': template,
  });
}