copyWith method

VerifyModel copyWith({
  1. String? status,
  2. VerifyDataModel? data,
})

Implementation

VerifyModel copyWith({String? status, VerifyDataModel? data}) {
  return VerifyModel(status: status ?? this.status, data: data ?? this.data);
}