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