copyWith method
Implementation
TransactionResponseDto copyWith({
bool? success,
String? message,
Data? data,
}) =>
TransactionResponseDto(
success: success ?? this.success,
message: message ?? this.message,
data: data ?? this.data,
);