PostgresTableHandle constructor

PostgresTableHandle(
  1. String name,
  2. Map<String, PostgresTableField> fields, {
  3. String description = '',
  4. bool isView = false,
  5. Object? defaultValue,
})

Implementation

PostgresTableHandle(
  this.name,
  Map<String, PostgresTableField> fields, {
  this.description = '',
  this.isView = false,
  super.defaultValue,
}) : fields = UnmodifiableMapView(
       Map<String, PostgresTableField>.from(fields),
     );