NetworkService.fromJson constructor

NetworkService.fromJson(
  1. Map json_
)

Implementation

NetworkService.fromJson(core.Map json_)
  : this(
      enabled: json_['enabled'] as core.bool?,
      state: json_['state'] as core.String?,
    );