write static method

String write(
  1. String role
)

Write permission for provided role

This is an alias of update, delete, and possibly create. Don't use write in combination with update, delete, or create.

Implementation

static String write(String role) {
  return 'write("$role")';
}