WorkspaceDiff constructor

const WorkspaceDiff({
  1. List<String> created = const [],
  2. List<String> modified = const [],
  3. List<String> deleted = const [],
  4. Map<String, String> contentSnippets = const {},
})

Implementation

const WorkspaceDiff({
  this.created = const [],
  this.modified = const [],
  this.deleted = const [],
  this.contentSnippets = const {},
});