MethodInfo constructor

MethodInfo({
  1. required String name,
  2. required String annotation,
  3. required String returnType,
})

Implementation

MethodInfo({
  required this.name,
  required this.annotation,
  required this.returnType,
});