dataAs<V> method

V? dataAs<V>()

安全地获取数据并转换为指定类型

Implementation

V? dataAs<V>() {
  if (data is V) {
    return data as V;
  }
  return null;
}