networkTypeMobile property

NetworkTypeMobile? networkTypeMobile

A mobile network

Implementation

NetworkTypeMobile? get networkTypeMobile {
  if (this is NetworkTypeMobile) {
    return this as NetworkTypeMobile;
  }
  return null;
}