PrefilledInformation.fromJson constructor

PrefilledInformation.fromJson(
  1. Map json
)

Implementation

factory PrefilledInformation.fromJson(Map<dynamic, dynamic> json) {
  return PrefilledInformation(
    billingAddress: json['billingAddress'] != null ? BillingAddress.fromJson(json['billingAddress']) : null,
  );
}