SchemaNamespace constructor

const SchemaNamespace({
  1. required String name,
  2. String? owner,
  3. bool isDefault = false,
})

Implementation

const SchemaNamespace({
  required this.name,
  this.owner,
  this.isDefault = false,
});