getModelById method

T? getModelById(
  1. String id
)

Returns Model by Id

Implementation

T? getModelById(String id) {
  return _models[id];
}