ModifyPushConfigRequest.fromJson constructor

ModifyPushConfigRequest.fromJson(
  1. Map json_
)

Implementation

ModifyPushConfigRequest.fromJson(core.Map json_)
  : this(
      pushConfig:
          json_.containsKey('pushConfig')
              ? PushConfig.fromJson(
                json_['pushConfig'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );