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