fromJson static method
Inherited by: NetworkTypeMobile NetworkTypeMobileRoaming NetworkTypeNone NetworkTypeOther NetworkTypeWiFi
Implementation
static NetworkTypeMobileRoaming? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const NetworkTypeMobileRoaming();
}