Proto constructor

const Proto({
  1. String? prefix,
  2. String packageName = '',
  3. bool includeFieldsByDefault = true,
  4. bool? useProtoFieldNamingConventions,
  5. List<Type>? knownSubClasses,
})

Implementation

const Proto({
  this.prefix,
  this.packageName = '',
  this.includeFieldsByDefault = true,
  this.useProtoFieldNamingConventions,
  this.knownSubClasses,
});