message property

  1. @override
String get message
override

A sentence naming what happened and, where there is one, what to do.

Implementation

@override
String get message => key == null
    ? 'no row in $table matched the query.'
    : 'no row in $table with key $key.';