FLDyContainer constructor

FLDyContainer({
  1. Key? key,
  2. Widget? placeholder,
  3. dynamic jsonObject,
})

Implementation

FLDyContainer({
  Key? key,
  this.placeholder,
  this.jsonObject,
})  : assert(placeholder != null || jsonObject != null),
      super(key: key) {
  FLDyLogger.log('initial dynamic container');
  FLDyLogger.logStartTime();
}