ParamInfo constructor

const ParamInfo({
  1. required String name,
  2. String type = 'dynamic',
})

Creates a ParamInfo.

Implementation

const ParamInfo({required this.name, this.type = 'dynamic'});