trimTimeEpoch property

String? trimTimeEpoch

Implementation

String? get trimTimeEpoch {
  if (this != null && this!.contains('##')) {
    // ignore: parameter_assignments
    return this!.split('##')[0];
  }

  return '';
}