controller property

S get controller

Implementation

S get controller {
  final controller = GetWidget._cache[this];
  if (controller == null) {
    throw StateError('Controller not found in cache for $runtimeType');
  }
  return controller as S;
}