util/m_callback library
Functions
-
debugDo(
VoidCallback onAction, [bool? condition1, bool? condition2, bool? condition3]) → void
Typedefs
-
AsyncCallbackWithError<
T> = Future< T> Function(void (Object error)) -
BinaryCallback<
T, U> = void Function(T a, U b) - function type with multiple parameters
- BoolCallBack = void Function(bool value)
- Bool
-
BoolCallBackFuture<
T> = Future< T> Function(bool value) -
BoolCallBackReturn<
T> = T Function(bool value) - BoolCallbackWithInt = bool Function(int value)
- CallBack = dynamic Function(dynamic value)
- CallBack
-
FutureCallback<
T> = Future< T> Function() - General. Function type of return Future value.
- IntCallBack = void Function(int value)
- Int.
-
IntCallBackFuture<
T> = Future< T> Function(int value) -
IntCallBackReturn<
T> = T Function(int value) -
ListCallBack<
T> = void Function(List< T> value) - List.
-
ListCallBackFuture<
T, R> = Future< R> Function(List<T> value) -
ListCallBackReturn<
T, R> = R Function(List< T> value) -
ReturnCallback<
T> = T Function() - Function type of return value.
-
ReturnCallbackWithParam<
T, P> = T Function(P) - Function type of return value.
- StringCallBack = void Function(String value)
- String.
-
StringCallBackFuture<
T> = Future< T> Function(String value) -
StringCallBackReturn<
T> = T Function(String value) -
StringFutureCallbackWithInt
= Future<
String> Function(int value) - SumCallback = int Function(int a, int b)