Theme constructor

Theme({
  1. required String logoUrlLight,
  2. required String logoUrlDark,
  3. required String supportUrl,
})

Implementation

Theme({
  required this.logoUrlLight,
  required this.logoUrlDark,
  required this.supportUrl,
});