DefaultSnatStatus.fromJson constructor

DefaultSnatStatus.fromJson(
  1. Map json_
)

Implementation

DefaultSnatStatus.fromJson(core.Map json_)
    : this(
        disabled: json_.containsKey('disabled')
            ? json_['disabled'] as core.bool
            : null,
      );