AndroidCustomPathHandler constructor

AndroidCustomPathHandler(
  1. PlatformCustomPathHandlerCreationParams params
)

Constructs a AndroidCustomPathHandler.

Implementation

AndroidCustomPathHandler(PlatformCustomPathHandlerCreationParams params)
    : super.implementation(
        params is AndroidCustomPathHandlerCreationParams
            ? params
            : AndroidCustomPathHandlerCreationParams
                .fromPlatformCustomPathHandlerCreationParams(params),
      ) {
  _init(params);
}