PluginInfo constructor

PluginInfo({
  1. String? name,
  2. String? path,
})

Implementation

factory PluginInfo({
  $core.String? name,
  $core.String? path,
}) {
  final result = create();
  if (name != null) result.name = name;
  if (path != null) result.path = path;
  return result;
}