copyWith method

Data copyWith({
  1. String? appVersionId,
  2. String? type,
  3. String? version,
  4. String? isForce,
  5. CreatedAtDateTime? createdAtDateTime,
})

Implementation

Data copyWith({  String? appVersionId,
  String? type,
  String? version,
  String? isForce,
  CreatedAtDateTime? createdAtDateTime,
}) => Data(  appVersionId: appVersionId ?? _appVersionId,
  type: type ?? _type,
  version: version ?? _version,
  isForce: isForce ?? _isForce,
  createdAtDateTime: createdAtDateTime ?? _createdAtDateTime,
);