UWalletJson.fromMap constructor

UWalletJson.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory UWalletJson.fromMap(Map<String, dynamic> json) => UWalletJson(
  allowMinusBalance: json["allowMinusBalance"] ?? false,
  detail1: json["detail1"],
  detail2: json["detail2"],
);