show method

Future<DateTime?> show()

Implementation

Future<DateTime?> show() async {
  final result = await FlListWheel.pushFun.call(this);
  return result is DateTime ? result : null;
}