FFAppEvent constructor
FFAppEvent({
- FFIdentifier? identifier,
- String? name,
- String? description,
- FFAppEvent_FFAppEventScope? scope,
- bool? hasData,
- FFParameter? dataTypeParameter,
- FFIdentifier? globalHandlerActionComponentIdentifier,
Implementation
factory FFAppEvent({
FFIdentifier? identifier,
$core.String? name,
$core.String? description,
FFAppEvent_FFAppEventScope? scope,
$core.bool? hasData,
FFParameter? dataTypeParameter,
FFIdentifier? globalHandlerActionComponentIdentifier,
}) {
final result = create();
if (identifier != null) result.identifier = identifier;
if (name != null) result.name = name;
if (description != null) result.description = description;
if (scope != null) result.scope = scope;
if (hasData != null) result.hasData = hasData;
if (dataTypeParameter != null) result.dataTypeParameter = dataTypeParameter;
if (globalHandlerActionComponentIdentifier != null)
result.globalHandlerActionComponentIdentifier =
globalHandlerActionComponentIdentifier;
return result;
}