bufMsg method

String bufMsg(
  1. String sender,
  2. dynamic receiver,
  3. dynamic op,
  4. dynamic msg,
)

devl:CORP Automatic messages to buf, in operations. Formulate String for buffer message.

Implementation

String bufMsg(String sender, receiver, op, msg) {
  String _s = "s: $sender  r: $receiver oop: $op msg: $msg";
  //  code here
  return _s;
}