configurationChanged method

void configurationChanged(
  1. Object object
)

Implementation

void configurationChanged(Object object) {
  if (Platform.isAndroid) {
    try {
      _channel.invokeMethod('configurationChanged');
    } catch (e) {
      String desc = flutterLog + e.toString();
      Map<String, String> error = {"code": "-2", "description": desc};
      _onError!(error);
    }
  }
}