withPrivileges method

  1. @override
void withPrivileges(
  1. RunPrivileged action, {
  2. bool allowUnprivileged = false,
})
override

Run action On docker we don't have to manipulate the privlieges as we are aways root.

Implementation

@override
void withPrivileges(RunPrivileged action, {bool allowUnprivileged = false}) {
  action();
}