fromJson static method

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

Implementation

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

  return InputPassportElementUtilityBill(
    utilityBill: InputPersonalDocument.fromJson(
      tdMapFromJson(json['utility_bill']),
    ),
  );
}