BatchStatusFaucetResponse.fromJson constructor
BatchStatusFaucetResponse.fromJson(
- dynamic data
Implementation
factory BatchStatusFaucetResponse.fromJson(dynamic data) {
return BatchStatusFaucetResponse(
BatchSendStatusType.fromJson(data['status']),
data['error']
);
}