FlutterSafetyBasePlatform class abstract
An abstract class that extends PlatformInterface to define the
platform-specific implementation for the Flutter Safety plugin.
This class serves as the base for all platform-specific implementations and ensures that the correct platform interface is used.
- Inheritance
-
- Object
- PlatformInterface
- FlutterSafetyBasePlatform
- Implementers
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- methodChannel ↔ MethodChannel
-
A MethodChannel that is used for communication between Flutter and the
native platform. This field is marked as
lateandfinal, meaning it will be initialized later and cannot be reassigned. The@visibleForTestingannotation indicates that this field is intended to be visible only for testing purposes.latefinal - name → String
-
The name associated with the platform.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
defaultPermissionUI(
BuildContext context, Future requestPermission(BuildContext)) → Widget - A default UI widget for handling permission requests.
-
invokeNativeMethod(
String methodName, [dynamic arguments]) → Future< Either< String, dynamic> > - Invokes a native method through the method channel and handles the response.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
platformViewLink(
{dynamic onSafetyDetection(dynamic)?, dynamic onDetectionComplete(dynamic)?, dynamic onBoundingBox(dynamic)?, dynamic fps(dynamic)?, dynamic error(dynamic)?, dynamic cameraStatus(dynamic)?, dynamic loading(dynamic)?, dynamic disposed(dynamic)?, dynamic filterUpdated(dynamic)?, dynamic cameraSwitch(dynamic)?, Widget? onLoadingWidget, Widget? faceMaskOverlay, required Widget builder(Widget, FlutterSafetyPlatformCameraController), Widget customPermissionBuilder(Future (BuildContext))?, Map< String, dynamic> creationParams = const {}, required String viewType}) → Widget - Creates a platform view link widget with various callback functions for handling different events and optional widgets for loading and face mask overlay.
-
registerCallback(
String method, dynamic callback(dynamic)) → void - Registers a callback for a specific method.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
setupCallbacks(
) → void - Sets up callbacks for method channel events.