FFCustomInterfaceConstructor constructor
FFCustomInterfaceConstructor({
- FFIdentifier? identifier,
- Iterable<
FFParameter> ? arguments,
Implementation
factory FFCustomInterfaceConstructor({
FFIdentifier? identifier,
$core.Iterable<FFParameter>? arguments,
}) {
final result = create();
if (identifier != null) result.identifier = identifier;
if (arguments != null) result.arguments.addAll(arguments);
return result;
}