LiveChatMemberMilestoneChatDetails.fromJson constructor
LiveChatMemberMilestoneChatDetails.fromJson(
- Map json_
Implementation
LiveChatMemberMilestoneChatDetails.fromJson(core.Map json_)
: this(
memberLevelName: json_.containsKey('memberLevelName')
? json_['memberLevelName'] as core.String
: null,
memberMonth: json_.containsKey('memberMonth')
? json_['memberMonth'] as core.int
: null,
userComment: json_.containsKey('userComment')
? json_['userComment'] as core.String
: null,
);