DOWN property

FocusDirection DOWN
final

Move focus down.

Officially Supported Platforms/Implementations:

Implementation

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