LookupData constructor
const
LookupData({})
Implementation
const LookupData({
bool? active,
String? createdDate,
String? modifiedDate,
String? createdBy,
String? modifiedBy,
String? name,
String? description,
String? dataType,
List<Lookup>? detail,
}) : active = active ?? false,
createdDate = createdDate ?? "",
modifiedDate = modifiedDate ?? "",
createdBy = createdBy ?? "",
modifiedBy = modifiedBy ?? "",
name = name ?? "",
description = description ?? "",
dataType = dataType ?? "",
detail = detail ?? const [];