WooPaymentGatewayTitle.fromJson constructor

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

Implementation

WooPaymentGatewayTitle.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  label = json['label'];
  description = json['description'];
  type = json['type'];
  value = json['value'];
  defaultvalue = json['default'];
  tip = json['tip'];
  placeholder = json['placeholder'];
}