operations property

Map<String, OperationOpenApi> get operations

Implementation

Map<String, OperationOpenApi> get operations => {
  if (get != null) 'get': get!,
  if (put != null) 'put': put!,
  if (post != null) 'post': post!,
  if (delete != null) 'delete': delete!,
  if (head != null) 'head': head!,
  if (patch != null) 'patch': patch!,
};