BlockTimestamp.fromJson constructor

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

Implementation

factory BlockTimestamp.fromJson(Map<String, dynamic> json) {
  return BlockTimestamp(slot: json["slot"], timestamp: json["timestamp"]);
}