common/rollbar_common library
Classes
- BreadcrumbRecord
- Environment
- Equatable
-
Failure<
T, E extends Error> -
Identifiable<
T extends Object> - PayloadRecord
-
Persistable<
T extends Object> - The class of types that are Persistable.
- PersistableBreadcrumbRecord
- PersistableFor
- Dart's type system is too rudimentary and still doesn't support abstract static interfaces.
- PersistablePayloadRecord
-
Result<
T, E extends Error> - Serializable
- The class of types that are Serializable.
- SerializableBreadcrumbRecord
- SerializableFor
- Dart's type system is too rudimentary and still doesn't support abstract static interfaces.
- SerializablePayloadRecord
-
Success<
T, E extends Error> -
TableSet<
E extends Persistable< UUID> > -
A collection of Persistable objects that leverages the
sqlite3
library in which each record can occur only once. -
Tuple2<
T1, T2> -
ZippedIterable<
A, B> -
ZippedIterator<
E1, E2>
Enums
- Datatype
- A type identifier.
- HttpMethod
- HttpStatus
- Level
- The level of an occurrence.
Mixins
Extensions
-
CompactIterable
on Iterable<
E?> -
CompactMap
on Map<
K, V?> - DatatypeSqlType on Datatype
- DateTimeComparison on DateTime
- DateTimeMath on DateTime
- DurationExtension on int
- This extension allows Duration to be created straight from the integer.
- HigherOrderFunctions on T?
- HttpMethodName on HttpMethod
- HttpResponseExtension on Response
-
IterableExtensions
on Iterable<
E> -
IterableIntoUUID
on Iterable<
int> -
MapExtensions
on Map<
K, V> - RandomExtensions on Random
- StringExtensions on String
- StringIntoUUID on String
- SymbolExtensions on Symbol
- TryAs on Object?
-
ZippedIterableExtension
on Iterable<
A>
Constants
Properties
- nilUUID → UuidValue
-
final
Functions
-
constant<
T, U> (T x) → T Function(U) - The Constant function.
-
curry2<
A, B, C> (C f(A, B)) → C Function(B) Function(A) - Binary function currying. Allows for partial application of binary functions.
-
identity<
T> (T x) → T - The Identity function.
-
isFalse(
bool x) → bool -
Tests whether the given boolean argument
x
is false. -
isNotNull<
T> (T? x) → bool -
Tests whether the given argument
x
is notnull
. -
isNull<
T> (T? x) → bool -
Tests whether the given argument
x
isnull
. -
not<
T> (bool p(T)) → bool Function(T) - Inverses a predicate boolean evaluation.
-
repeat(
int times, void body()) → void -
Repeatedly calls the given function
body
, the given amount oftimes
.