getTemplate method
Implementation
@override
Future<List<int>> getTemplate() async {
try {
final template = await methodChannel.invokeMethod(METHOD_GET_TEMPLATE);
return template;
} on PlatformException catch (e) {
throw _libException(e);
}
}