ServerLifecycleComponentMethod constructor

ServerLifecycleComponentMethod({
  1. required String name,
  2. required bool isFuture,
  3. required String returnType,
  4. required List<ServerParam> parameters,
  5. required String? exceptionType,
  6. required ServerImports import,
})

Implementation

ServerLifecycleComponentMethod({
  required this.name,
  required this.isFuture,
  required this.returnType,
  required this.parameters,
  required this.exceptionType,
  required this.import,
});