Account.fromJson constructor
Implementation
Account.fromJson(Map<String, dynamic> json) {
data = json['data'] != null ? Data.fromJson(json['data']) : null;
executable = json['executable'];
lamports = json['lamports'];
owner = json['owner'];
rentEpoch = json['rentEpoch'];
}