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