GearSelection.fromJson constructor
Implementation
factory GearSelection.fromJson(Map<String, dynamic> json) => GearSelection(
key: json["key"],
description: json["description"],
options: List<GearOption>.from(
json["options"].map((x) => GearOption.fromJson(x))),
coins: json["coins"]?.toDouble(),
);