toFtile method

FTile toFtile()

Converts this VTile into an FTile with the same properties.

Implementation

FTile toFtile() {
  return FTile(
    enabled: enabled,
    selected: selected,
    onPress: onPress,
    title: title,
    subtitle: subtitle,
    details: details,
    prefix: prefix,
    suffix: suffix,
  );
}