ConstructionDeriveResponse.fromMap constructor

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

Implementation

factory ConstructionDeriveResponse.fromMap(Map<String, dynamic> map) {
  return ConstructionDeriveResponse(map["address"],
      AccountIdentifier.fromMap(map["account_identifier"]), map["metadata"]);
}