Settings constructor Null safety

Settings(
  1. {required bool autoplay,
  2. required bool displayNsfw,
  3. required bool emailOnReply,
  4. required bool emailOnUpvote,
  5. required bool emailOnFollow,
  6. required bool emailOnMention}
)

Implementation

Settings({
  required this.autoplay,
  required this.displayNsfw,
  required this.emailOnReply,
  required this.emailOnUpvote,
  required this.emailOnFollow,
  required this.emailOnMention,
});