stringify method

  1. @override
String stringify(
  1. I value,
  2. MappingContext context
)
override

The mapping method to get the string representation of value.

Implementation

@override
String stringify(I value, MappingContext context) =>
    '(${value.map((e) => context.container.asString(e)).join(', ')})';