RIGHT property

FocusDirection RIGHT
final

Move focus to the right.

Officially Supported Platforms/Implementations:

Implementation

static final RIGHT = FocusDirection._internalMultiPlatform('RIGHT', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.android:
      return 130;
    default:
      break;
  }
  return null;
});