copyWith method
Data
copyWith({
- String? appVersionId,
- String? type,
- String? version,
- String? isForce,
- 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,
);