get<T> method

Future<Either<ActionRequestError, T?>?> get<T>([
  1. String? path = null
])

Implementation

Future<Either<ActionRequestError, T?>?> get<T>([String? path = null]) async {
  return await _get<T>(path ?? this.path);
}