SchemaMutation.dropDatabase constructor

SchemaMutation.dropDatabase({
  1. required String name,
  2. bool ifExists = false,
})

Implementation

factory SchemaMutation.dropDatabase({
  required String name,
  bool ifExists = false,
}) => SchemaMutation._(
  operation: SchemaMutationOperation.dropDatabase,
  documentPayload: {'name': name, 'ifExists': ifExists},
);