setThemeColor static method
Set theme color
hexColor
requires 6-digit hexadecimal color code, such as #FFFFFF
the defualt theme color is #A257FA
Implementation
static setThemeColor(String hexColor) {
if (Platform.isIOS) {
_channel.invokeMethod("setThemeColor", hexColor);
} else {
// not supported
}
}