TF-3157 Update web socket with background service worker
TF-3157 Stub BroadcastChannel for mobile build
This commit is contained in:
@@ -2,13 +2,13 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class TypeName with EquatableMixin {
|
||||
static final mailboxType = TypeName('Mailbox');
|
||||
static final emailType = TypeName('Email');
|
||||
static final emailDelivery = TypeName('EmailDelivery');
|
||||
static const mailboxType = TypeName('Mailbox');
|
||||
static const emailType = TypeName('Email');
|
||||
static const emailDelivery = TypeName('EmailDelivery');
|
||||
|
||||
final String value;
|
||||
|
||||
TypeName(this.value);
|
||||
const TypeName(this.value);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [value];
|
||||
|
||||
Reference in New Issue
Block a user