ConstructionCombineRequest.fromJson constructor

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

Implementation

factory ConstructionCombineRequest.fromJson(Map<String, dynamic> map) {
  return ConstructionCombineRequest(
    NetworkIdentifier.fromJson(map['network_identifier']),
    map['unsigned_transaction'],
    (map['signatures'] as List).map((e) => Signature.fromJson(e)).toList(),
  );
}