createGlobalKey static method

GlobalKey<_RectGetterState> createGlobalKey()

create a custom globalkey , use this way to avoid type exception in dart2 .

Implementation

static GlobalKey<_RectGetterState> createGlobalKey() {
  return new GlobalKey<_RectGetterState>();
}