GetNotificationChannelVerificationCodeRequest.fromJson constructor

GetNotificationChannelVerificationCodeRequest.fromJson(
  1. Map json_
)

Implementation

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