findExistingModel method

String? findExistingModel(
  1. Map<String, String> fields
)

Finds an existing model name that matches the structure

Implementation

String? findExistingModel(Map<String, String> fields) {
  final signature = _getSignature(fields);
  return _structureToName[signature];
}