FungibleInfo.fromJson constructor

FungibleInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory FungibleInfo.fromJson(Map<String, dynamic> json) => FungibleInfo(
  name: json['name'],
  symbol: json['symbol'],
  icon: json['icon'] == null ? null : Icon.fromJson(json['icon']),
);