toString method

  1. @override
String toString()
override

A string representation of this object.

Some classes have a default textual representation, often paired with a static parse function (like int.parse). These classes will provide the textual representation as their string representation.

Other classes have no meaningful textual representation that a program will care about. Such classes will typically override toString to provide useful information when inspecting the object, mainly for debugging or logging.

Implementation

@override
String toString() {
  if (const bool.fromEnvironment('dart.vm.product')) {
    return super.toString();
  }
  final StringBuffer result = StringBuffer();
  String semicolon = '';
  result.write('Paint(');
  if (style == PaintingStyle.stroke) {
    result.write('$style');
    if (strokeWidth != 0.0) {
      result.write(' ${strokeWidth.toStringAsFixed(1)}');
    } else {
      result.write(' hairline');
    }
    if (strokeCap != StrokeCap.butt) {
      result.write(' $strokeCap');
    }
    if (strokeJoin == StrokeJoin.miter) {
      if (strokeMiterLimit != _kStrokeMiterLimitDefault) {
        result.write(' $strokeJoin up to ${strokeMiterLimit.toStringAsFixed(1)}');
      }
    } else {
      result.write(' $strokeJoin');
    }
    semicolon = '; ';
  }
  if (!isAntiAlias) {
    result.write('${semicolon}antialias off');
    semicolon = '; ';
  }
  if (color != const Color(_kColorDefault)) {
    result.write('$semicolon$color');
    semicolon = '; ';
  }
  if (blendMode.index != _kBlendModeDefault) {
    result.write('$semicolon$blendMode');
    semicolon = '; ';
  }
  if (colorFilter != null) {
    result.write('${semicolon}colorFilter: $colorFilter');
    semicolon = '; ';
  }
  if (maskFilter != null) {
    result.write('${semicolon}maskFilter: $maskFilter');
    semicolon = '; ';
  }
  if (filterQuality != FilterQuality.none) {
    result.write('${semicolon}filterQuality: $filterQuality');
    semicolon = '; ';
  }
  if (shader != null) {
    result.write('${semicolon}shader: $shader');
    semicolon = '; ';
  }
  if (imageFilter != null) {
    result.write('${semicolon}imageFilter: $imageFilter');
    semicolon = '; ';
  }
  if (invertColors) {
    result.write('${semicolon}invert: $invertColors');
  }
  result.write(')');
  return result.toString();
}