MoreldApplyTheme constructor

const MoreldApplyTheme({
  1. Key? key,
  2. String url = 'https://theme.apply.no/theme.json',
  3. required String appId,
  4. required Widget child,
})

Implementation

const MoreldApplyTheme({
  Key? key,
  this.url = 'https://theme.apply.no/theme.json',
  required this.appId,
  required this.child,
}) : super(key: key);