FFCustomInterfaceConstructor constructor

FFCustomInterfaceConstructor({
  1. FFIdentifier? identifier,
  2. 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;
}