setThemeColorForiOS static method

Future<Null> setThemeColorForiOS(
  1. String hexColor
)

Sets the overall theme color used in the iOS platform.

Implementation

static Future<Null> setThemeColorForiOS(String hexColor) async {
  await _channel.invokeMethod('setThemeColorForiOS', hexColor);
}