MobileDataController constructor

MobileDataController()

Implementation

MobileDataController() {
  // Platform check to make sure the plugin only works on Android.
  if (Platform.isAndroid == false) {
    throw UnsupportedError(
        'MobileDataController functionality is only supported on Android');
  }
}