EdfaPgPayer.fromJson constructor

EdfaPgPayer.fromJson(
  1. dynamic json
)

Implementation

EdfaPgPayer.fromJson(dynamic json) {
  firstName = json['firstName'];
  lastName = json['lastName'];
  address = json['address'];
  country = json['country'];
  city = json['city'];
  zip = json['zip'];
  email = json['email'];
  phone = json['phone'];
  ip = json['ip'];
  options = json['options'] != null ? EdfaPgPayerOption.fromJson(json['options']) : null;
}