PlatformChannelMappingError constructor Null safety

PlatformChannelMappingError(
  1. String description
)

Constructor that creates a PlatformChannelMappingError.

Params:

  • description: the description of the error.

Implementation

factory PlatformChannelMappingError(String description) {
  return PlatformChannelMappingErrorImpl(description);
}