fromJson static method

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

Implementation

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

  return InputPassportElementErrorSourceReverseSide(
    fileHash: (json['file_hash'] as String?) ?? '',
  );
}