v1DeleteSmartContractInterfaceIntent.fromJson constructor

v1DeleteSmartContractInterfaceIntent.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory v1DeleteSmartContractInterfaceIntent.fromJson(Map<String, dynamic> json) {
  final _smartContractInterfaceId = json['smartContractInterfaceId'] as String;
  return v1DeleteSmartContractInterfaceIntent(
    smartContractInterfaceId: _smartContractInterfaceId,
  );
}