fromJson static method

ResetPasswordResultDeclined? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static ResetPasswordResultDeclined? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return ResetPasswordResultDeclined(
    retryDate: (json['retry_date'] as int?) ?? 0,
  );
}