LiveChatFanFundingEventDetails.fromJson constructor
LiveChatFanFundingEventDetails.fromJson(
- Map json_
Implementation
LiveChatFanFundingEventDetails.fromJson(core.Map json_)
: this(
amountDisplayString: json_.containsKey('amountDisplayString')
? json_['amountDisplayString'] as core.String
: null,
amountMicros: json_.containsKey('amountMicros')
? json_['amountMicros'] as core.String
: null,
currency: json_.containsKey('currency')
? json_['currency'] as core.String
: null,
userComment: json_.containsKey('userComment')
? json_['userComment'] as core.String
: null,
);