RecordFactories extension
Factory methods for creating common record schemas
- on
-
- Never
Static Methods
-
dynamicRecord(
) → RecordSchema< String, dynamic> -
Available on Never, provided by the RecordFactories extension
Creates a string-to-dynamic record schema -
stringMap(
) → RecordSchema< String, String> -
Available on Never, provided by the RecordFactories extension
Creates a string-to-string record schema -
stringRecord<
V> ([Schema< V> ? valueSchema]) → RecordSchema<String, V> -
Available on Never, provided by the RecordFactories extension
Creates a string-keyed record schema -
typedRecord<
K, V> ({Schema< K> ? keySchema, Schema<V> ? valueSchema}) → RecordSchema<K, V> -
Available on Never, provided by the RecordFactories extension
Creates a typed key-value record schema