getIdentifierByName static method

Map<String, dynamic>? getIdentifierByName(
  1. String readableName
)

Returns the object identifier corresponding to the given readableName.

Returns null if none object identifier can be found for the given readableName.

Implementation

static Map<String, dynamic>? getIdentifierByName(String readableName) {
  for (var element in oi) {
    if (element['readableName'] == readableName) {
      return element;
    }
  }
  return null;
}