Value.fromJson constructor

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

Implementation

Value.fromJson(Map<String, dynamic> json) {
  data = json['data'].cast<String>();
  executable = json['executable'];
  lamports = json['lamports'];
  owner = json['owner'];
  rentEpoch = json['rentEpoch'];
}