ClassModel constructor

const ClassModel({
  1. required String className,
  2. required int methodCount,
})

Creates a new instance of ClassModel with the given class name and method count.

Implementation

const ClassModel({
  required this.className,
  required this.methodCount,
});