Query$challenge$challenge$donation$donation$predefined.fromJson constructor

Query$challenge$challenge$donation$donation$predefined.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Query$challenge$challenge$donation$donation$predefined.fromJson(
    Map<String, dynamic> json) {
  final l$enable = json['enable'];
  final l$action = json['action'];
  return Query$challenge$challenge$donation$donation$predefined(
    enable: (l$enable as bool?),
    action: l$action == null
        ? null
        : Query$challenge$challenge$donation$donation$predefined$action
            .fromJson((l$action as Map<String, dynamic>)),
  );
}