Mutex constructor

Mutex({
  1. String? identifier,
})

Implementation

factory Mutex(
    {
    /// An optional identifier for this Mutex instance.
    /// This could be used for platform specific logic or debugging purposes.
    /// Currently this is not used on native platforms.
    /// On web this will be used for the lock name if Navigator locks are available.
    String? identifier}) {
  return MutexImpl(identifier: identifier);
}