notifyTableFieldTypes method

Map<String, Type> notifyTableFieldTypes(
  1. String table,
  2. Map<String, Type> fieldsTypes
)

Implementation

Map<String, Type> notifyTableFieldTypes(
  String table,
  Map<String, Type> fieldsTypes,
) {
  return _tablesFieldsTypes.putIfAbsent(
    table,
    () => Map<String, Type>.unmodifiable(fieldsTypes),
  );
}