delete method Null safety

Future<Map> delete(
  1. String name,
  2. String objectId
)

Implementation

Future<Map> delete(String name, String objectId) async {
  return exec('DELETE', name, objectId: objectId);
}