Code constructor

Code(
  1. {String? name,
  2. String? kind,
  3. required String id}
)

Implementation

Code({
  this.name,
  this.kind,
  required String id,
}) : super(
        id: id,
      );