PlatformChannelUnknownError constructor Null safety

PlatformChannelUnknownError(
  1. String? description
)

Constructor that creates a PlatformChannelUnknownError.

Params:

  • description: the description of the error.

Implementation

factory PlatformChannelUnknownError(String? description) {
  return PlatformChannelUnknownErrorImpl(description);
}