copyWith method
CheckSubscriptionResponse
copyWith({
- CheckSubscriptionData? data,
- String? message,
- String? apiName,
Implementation
CheckSubscriptionResponse copyWith({ CheckSubscriptionData? data,
String? message,
String? apiName,
}) => CheckSubscriptionResponse( data: data ?? _data,
message: message ?? _message,
apiName: apiName ?? _apiName,
);