strTimeSeconds method

String strTimeSeconds(
  1. Object time
)

{time} seconds ago

Implementation

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