unboxed<T> method

T unboxed<T>(
  1. dynamic accessor
)

Implementation

T unboxed<T>(dynamic accessor) =>
    null is! T ? this[accessor].unbox() : unboxedElementAt(accessor) as T;