ConstructionDeriveResponse.fromJson constructor

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

Implementation

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