JsonWidgetParams constructor

JsonWidgetParams({
  1. bool isDeferred = false,
  2. bool isFunction = false,
  3. bool isStatic = false,
  4. bool isVariable = false,
  5. required String? key,
})

Implementation

JsonWidgetParams({
  this.isDeferred = false,
  this.isFunction = false,
  this.isStatic = false,
  this.isVariable = false,
  required this.key,
}) : assert(key?.isNotEmpty == true);