MarkerNotFoundException constructor
MarkerNotFoundException({
- required PlatformException exception,
Creates a MarkerNotFoundException from an original PlatformException.
Implementation
MarkerNotFoundException({required PlatformException exception})
: assert(exception.code == platformCode),
super(
code: exception.code,
message: exception.message ?? 'Marker not found.',
details: exception.details,
stacktrace: exception.stacktrace,
);