Watchers constructor
Watchers({
- bool? isWatching,
- String? self,
- int? watchCount,
- List<
UserDetails> ? watchers,
Implementation
Watchers(
{bool? isWatching,
this.self,
this.watchCount,
List<UserDetails>? watchers})
: isWatching = isWatching ?? false,
watchers = watchers ?? [];