copyWith method

CheckSubscriptionResponse copyWith({
  1. CheckSubscriptionData? data,
  2. String? message,
  3. String? apiName,
})

Implementation

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