fromJson static method
Inherited by: CraftGiftResultFail CraftGiftResultInvalidGift CraftGiftResultSuccess CraftGiftResultTooEarly
Implementation
static CraftGiftResultTooEarly? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return CraftGiftResultTooEarly(
retryAfter: (json['retry_after'] as int?) ?? 0,
);
}