setTheme static method

Future<String> setTheme(
  1. String theme
)

Through this function you can change the theme of the FaceTec SDK

Implementation

static Future<String> setTheme(String theme) async {
  final String result = await _channel.invokeMethod('setTheme', theme);
  return result;
}