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 =>
    '$operation on $table affected $actual rows, expected $expected. '
    '${rolledBack ? 'The write was rolled back.' : 'The write is still part '
              'of the surrounding transaction; roll it back to undo it.'}';