copyWith method
Implementation
Data copyWith({ num? id,
String? version,
String? type,
num? isFource,
String? appType,
String? createdAt,
}) => Data( id: id ?? _id,
version: version ?? _version,
type: type ?? _type,
isFource: isFource ?? _isFource,
appType: appType ?? _appType,
createdAt: createdAt ?? _createdAt,
);