VerifyNotificationChannelRequest.fromJson constructor

VerifyNotificationChannelRequest.fromJson(
  1. Map json_
)

Implementation

VerifyNotificationChannelRequest.fromJson(core.Map json_)
    : this(
        code: json_.containsKey('code') ? json_['code'] as core.String : null,
      );