CheckSubscriptionResponse constructor

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

Implementation

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