TerminalInfoResponse constructor
TerminalInfoResponse({})
Implementation
TerminalInfoResponse({
Status? status,
bool? success,
String? errorCode,
String? message,
String? details,
required this.name,
required this.id,
required this.link,
required this.type,
this.description,
required this.defaultPrice,
}) : super(
status: status,
success: success,
errorCode: errorCode,
message: message,
details: details,
);