EtfProfile.fromJson constructor

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

Implementation

EtfProfile.fromJson(Map<String, dynamic> json) {
  profile =
      json['profile'] != null ? Profile.fromJson(json['profile']) : null;
  symbol = json['symbol'];
}