WalletOptionsChoice.fromJson constructor
Implementation
factory WalletOptionsChoice.fromJson(Map<String, dynamic> json) =>
WalletOptionsChoice(
id: json["id"] ?? null,
name: json["name"] ?? null,
image: json["image"] ?? null,
type: json["type"] ?? null,
);