of static method

ElChildIndex of(
  1. BuildContext context
)

Implementation

static ElChildIndex of(BuildContext context) {
  final ElChildIndex? result = maybeOf(context);
  assert(result != null, 'No ElChildIndex found in context');
  return result!;
}