Dart Documentationchrome.syncFileSystemSyncDirection

SyncDirection class

class SyncDirection extends ChromeEnum {
 static const SyncDirection LOCAL_TO_REMOTE = const SyncDirection._('local_to_remote');
 static const SyncDirection REMOTE_TO_LOCAL = const SyncDirection._('remote_to_local');

 static const List<SyncDirection> VALUES = const[LOCAL_TO_REMOTE, REMOTE_TO_LOCAL];

 const SyncDirection._(String str): super(str);
}

Extends

ChromeEnum > SyncDirection

Static Properties

const SyncDirection LOCAL_TO_REMOTE #

static const SyncDirection LOCAL_TO_REMOTE = const SyncDirection._('local_to_remote')

const SyncDirection REMOTE_TO_LOCAL #

static const SyncDirection REMOTE_TO_LOCAL = const SyncDirection._('remote_to_local')

const List<SyncDirection> VALUES #

static const List<SyncDirection> VALUES = const[LOCAL_TO_REMOTE, REMOTE_TO_LOCAL]

Properties

final String value #

inherited from ChromeEnum
final String value

Methods

String toString() #

inherited from ChromeEnum

Returns a string representation of this object.

docs inherited from Object
String toString() => value;