ConstructionDeriveRequest.fromJson constructor

ConstructionDeriveRequest.fromJson(
  1. Map<String, dynamic> map
)

Implementation

factory ConstructionDeriveRequest.fromJson(Map<String, dynamic> map) {
  return ConstructionDeriveRequest(
    NetworkIdentifier.fromJson(map['network_identifier']),
    PublicKey.fromJson(map['public_key']),
    map['metadata'],
  );
}