stringify method

  1. @override
String stringify(
  1. ExecutorIdentity value
)
override

Converts value to a string suitable for use as a JSON map key.

Implementation

@override
String stringify(ExecutorIdentity value) =>
    value == ExecutorIdentity.none ? '' : '@${value.id}';