fromJson static method
Implementation
static RawBlockExtrinsics fromJson(Map<String, dynamic> map) =>
RawBlockExtrinsics(
blockNumber: map['blockNumber'],
header: map['header'] == null
? null
: RpcBlockHeader.fromJson(map['header']),
extrinsics: (map['extrinsics'] as List).cast<String>(),
);