stringify method

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

The mapping method to get the string representation of value.

Implementation

@override
String stringify(T value, MappingContext context) {
  return '$id(${_members.map((f) {
    return '${f.name}: ${context.container.asString(f.get(value))}';
  }).join(', ')})';
}