getTemplate method

  1. @override
Future<List<int>> getTemplate()
override

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);
  }
}