KotlinConstructor constructor

KotlinConstructor({
  1. required String name,
  2. required String descriptor,
  3. List<KotlinValueParameter> valueParameters = const [],
  4. required int flags,
})

Implementation

KotlinConstructor({
  required this.name,
  required this.descriptor,
  this.valueParameters = const [],
  required this.flags,
});