fromJson static method

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

Implementation

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

  return RecoveryEmailAddress(
    recoveryEmailAddress: (json['recovery_email_address'] as String?) ?? '',
  );
}