LEFT property

FocusDirection LEFT
final

Move focus to the left.

Officially Supported Platforms/Implementations:

Implementation

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