copyWith method
WebApiModulesAdministratorPluginPlugin
copyWith({
- int? pluginId,
- String? category,
- String? description,
- String? settings,
- DateTime? dateStamp,
- bool? enabled,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesAdministratorPluginPlugin copyWith(
{int? pluginId,
String? category,
String? description,
String? settings,
DateTime? dateStamp,
bool? enabled,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesAdministratorPluginPlugin(
pluginId: pluginId ?? this.pluginId,
category: category ?? this.category,
description: description ?? this.description,
settings: settings ?? this.settings,
dateStamp: dateStamp ?? this.dateStamp,
enabled: enabled ?? this.enabled,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}