name method

String name()

Implementation

String name() {
  switch (this) {
    case VariableScope.device:
      return 'device';
    case VariableScope.app:
      return 'app';
    case VariableScope.screen:
      return 'screen';
    case VariableScope.workflow:
      return 'workflow';
    case VariableScope.static:
      return 'static';
  }
}