Query$quest$quest$remuneration.fromJson constructor

Query$quest$quest$remuneration.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Query$quest$quest$remuneration.fromJson(Map<String, dynamic> json) {
  final l$amount = json['amount'];
  final l$walletType = json['walletType'];
  final l$wallet = json['wallet'];
  return Query$quest$quest$remuneration(
    amount: (l$amount as String?),
    walletType: l$walletType == null
        ? null
        : fromJson$Enum$WalletTypeEnum((l$walletType as String)),
    wallet: l$wallet == null
        ? null
        : Query$quest$quest$remuneration$wallet.fromJson(
            (l$wallet as Map<String, dynamic>)),
  );
}