$tryGetModelHandler<T> method

  1. @internal
$ModelHandler<T>? $tryGetModelHandler<T>(
  1. String key
)
inherited

Implementation

@internal
$ModelHandler<T>? $tryGetModelHandler<T>(String key) {
	if (this._mapModels == null) {
		return null;
	}
	if (!this._mapModels!.containsKey(key)) {
		return null;
	}

	return this._mapModels![key] as $ModelHandler<T>;
}