ConstructionDeriveRequest.fromMap constructor

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

Implementation

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