GetNotificationChannelVerificationCodeResponse.fromJson constructor

GetNotificationChannelVerificationCodeResponse.fromJson(
  1. Map json_
)

Implementation

GetNotificationChannelVerificationCodeResponse.fromJson(core.Map json_)
  : this(
      code: json_['code'] as core.String?,
      expireTime: json_['expireTime'] as core.String?,
    );