Account.fromJson constructor

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

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'];
}