copyWith method
Implementation
CheckPaymentModel copyWith({
bool? success,
int? code,
String? description,
Data? data,
}) =>
CheckPaymentModel(
success: success ?? this.success,
code: code ?? this.code,
description: description ?? this.description,
data: data ?? this.data,
);