MethodParameter constructor

MethodParameter({
  1. required String type,
  2. required String name,
  3. bool isSession = false,
})

Implementation

MethodParameter({
  required this.type,
  required this.name,
  this.isSession = false,
});