Flutter Engine
The Flutter Engine
|
Public Member Functions | |
ErrorLogResult (String tag) | |
ErrorLogResult (String tag, int level) | |
void | success (@Nullable Object result) |
void | error (String errorCode, @Nullable String errorMessage, @Nullable Object errorDetails) |
void | notImplemented () |
Public Member Functions inherited from io.flutter.plugin.common.MethodChannel.Result | |
void | success (@Nullable Object result) |
void | error ( @NonNull String errorCode, @Nullable String errorMessage, @Nullable Object errorDetails) |
void | notImplemented () |
An implementation of MethodChannel.Result
that writes error results to the Android log.
Definition at line 14 of file ErrorLogResult.java.
|
inline |
Definition at line 18 of file ErrorLogResult.java.
|
inline |
Definition at line 22 of file ErrorLogResult.java.
|
inline |
Definition at line 31 of file ErrorLogResult.java.
|
inline |
Handles a call to an unimplemented method.
Implements io.flutter.plugin.common.MethodChannel.Result.
Definition at line 40 of file ErrorLogResult.java.
|
inline |
Handles a successful result.
result | The result, possibly null. The result must be an Object type supported by the codec. For instance, if you are using StandardMessageCodec (default), please see its documentation on what types are supported. |
Implements io.flutter.plugin.common.MethodChannel.Result.
Definition at line 28 of file ErrorLogResult.java.