getDouble method

double? getDouble(
  1. String tag
)

Implementation

double? getDouble(String tag) => !containsKey(tag)
    ? null
    : double.tryParse(this[tag].toString()) ?? getInt(tag)?.toDouble();