strTimeHours method

String strTimeHours(
  1. Object time
)

{time} hours ago

Implementation

String strTimeHours(Object time) {
  return Intl.message(
    '$time hours ago',
    name: 'strTimeHours',
    desc: '',
    args: [time],
  );
}