APILogger typedef

APILogger = void Function(APIRoot apiRoot, String type, String? message, [Object? error, StackTrace? stackTrace])

An APIRoot logger function.

Implementation

typedef APILogger =
    void Function(
      APIRoot apiRoot,
      String type,
      String? message, [
      Object? error,
      StackTrace? stackTrace,
    ]);