makeKey method
Implementation
@override
String makeKey(int? index, String? field) {
if (index != null) {
throw StateError('index is not supported for ${slot.name}');
}
if (field == null) {
throw StateError('field is required for ${slot.name}');
}
return field;
}