MobileDataState constructor

MobileDataState({
  1. required bool isMobileDataEnabled,
  2. String? simOperator,
  3. String? networkOperator,
  4. String? networkType,
})

Constructs a MobileDataState object.

Implementation

MobileDataState({
  required this.isMobileDataEnabled,
  this.simOperator,
  this.networkOperator,
  this.networkType,
});