safeCast method

PaginatedResult<T>? safeCast(
  1. Object o
)
inherited

Implementation

T? safeCast(Object o) => o is T ? o : null;