open static method

Future<TdAddressValue?> open(
  1. TdAddressValue? initialValue, {
  2. Text? title,
})

弹出选择框

Implementation

static Future<TdAddressValue?> open(
  TdAddressValue? initialValue, {
  Text? title,
}) {
  return TdCascaderPlugin.open(
    initialValue,
    title: title,
    options: kCityOptions,
  );
}