WatchFace constructor

WatchFace({
  1. required int? id,
  2. required String? preview,
  3. required String? file,
})

Implementation

WatchFace({
  required this.id,
  required this.preview,
  required this.file,
});